home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / DJLSR106.ARJ / VFPRINTF.C < prev    next >
C/C++ Source or Header  |  1992-03-02  |  2KB  |  53 lines

  1. /* This is file VFPRINTF.C */
  2. /* This file may have been modified by DJ Delorie (Jan 1991).  If so,
  3. ** these modifications are Coyright (C) 1991 DJ Delorie, 24 Kirsten Ave,
  4. ** Rochester NH, 03867-2954, USA.
  5. */
  6.  
  7. /*
  8.  * Copyright (c) 1988 Regents of the University of California.
  9.  * All rights reserved.
  10.  *
  11.  * Redistribution and use in source and binary forms are permitted provided
  12.  * that: (1) source distributions retain this entire copyright notice and
  13.  * comment, and (2) distributions including binaries display the following
  14.  * acknowledgement:  ``This product includes software developed by the
  15.  * University of California, Berkeley and its contributors'' in the
  16.  * documentation or other materials provided with the distribution and in
  17.  * all advertising materials mentioning features or use of this software.
  18.  * Neither the name of the University nor the names of its contributors may
  19.  * be used to endorse or promote products derived from this software without
  20.  * specific prior written permission.
  21.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  22.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  23.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  24.  */
  25.  
  26. #if defined(LIBC_SCCS) && !defined(lint)
  27. static char sccsid[] = "@(#)vfprintf.c    5.4 (Berkeley) 6/30/90";
  28. #endif /* LIBC_SCCS and not lint */
  29.  
  30. #include <stdio.h>
  31. #include <varargs.h>
  32.  
  33. int
  34. vfprintf(FILE *iop, const char *fmt, ...)
  35. {
  36.     int len;
  37.     char localbuf[BUFSIZ];
  38.  
  39.     if (iop->_flag & _IONBF) {
  40.         iop->_flag &= ~_IONBF;
  41.         iop->_ptr = iop->_base = localbuf;
  42.         iop->_bufsiz = BUFSIZ;
  43.         len = _doprnt(fmt, (&fmt)[1], iop);
  44.         (void)fflush(iop);
  45.         iop->_flag |= _IONBF;
  46.         iop->_base = NULL;
  47.         iop->_bufsiz = 0;
  48.         iop->_cnt = 0;
  49.     } else
  50.         len = _doprnt(fmt, (&fmt)[1], iop);
  51.     return (ferror(iop) ? EOF : len);
  52. }
  53.